home *** CD-ROM | disk | FTP | other *** search
- $PKGLINE
-
- /**
- * test class $CLASSNAME - geef hier een beschrijving van deze class
- *
- * @author (jouw naam)
- * @version (versie nummer of datum)
- */
- public class $CLASSNAME extends junit.framework.TestCase
- {
- /**
- * Constructor voor test class $CLASSNAME
- */
- public $CLASSNAME()
- {
- }
-
- /**
- * Opzetten van de test fixture.
- *
- * Aanroep voor elke test case method.
- */
- protected void setUp()
- {
- }
-
- /**
- * Verwijderen van de test fixture.
- *
- * Aanroep na elke test case method.
- */
- protected void tearDown()
- {
- }
- }
-